Special OpenLinux Installation Procedures Getting Started Guide 185 a. Insert the OpenLinux Install CD-ROM into the CD-ROM drive. b. To mount the CD-ROM, type: mount /mnt/cdrom c. To copy the entire directory structure from the CD-ROM to the /install/ cd1 directory, type: cp -r -v /mnt/cdrom/* /install/cd1 d. When the copy is complete, repeat this procedure for the OpenLinux Source CD-ROM and the /install/cd2 directory. 3. To make the install directory available via NFS, you need to add an entry to the /etc/exports file. For example, to make the directory available to everyone in the handsonhistory.com domain, you would add the following: /install *.handsonhistory.com (ro,no_root_squash) 4. Restart your nfsd daemon so the exported directory is picked up. 5. On the Install server, you need to configure a DHCP server. When you set up the DHCP server, there must be an entry for every client to which you want to install. In that entry, you need to identify the client, the install server, and the location of the installation source directory. Here is an example of an entry you would add to the /etc/dhcpd.conf file on the DHCP server: host maple { hardware ethernet 00:01:E3:FB:34:35; fixed-address 192.168.1.3; option host-name maple.handsonhistory.com; next-server 192.168.1.1; filename “/install/cd1”; } The client is identified as the host named maple. The next three lines iden- tify maple’s Ethernet address, IP address, and host name of the client. The next-server option indicates the address of the install server (192.168.1.1). The filename option indicates the location of the installation CD-ROM contents (/install/cd1). Configuration of the install server is done. The next time you restart your dhcpd daemon, the configuration file is read and the install server will be available.